From 7adeca53b23c00fecb3272459cf586b8e4778332 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 28 Sep 2010 18:24:14 +0200 Subject: [PATCH] combobox: Fix compilation warnings - missing cast --- gtk/gtkcombobox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index f8ce6db0ee..6076c6ccfd 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -1283,7 +1283,7 @@ gtk_combo_box_remove (GtkContainer *container, gtk_widget_unparent (widget); _gtk_bin_set_child (GTK_BIN (container), NULL); - if (gtk_widget_in_destruction (combo_box)) + if (gtk_widget_in_destruction (GTK_WIDGET (combo_box))) return; gtk_widget_queue_resize (GTK_WIDGET (container)); -- 2.30.2